Path 1: 43 calls (1.0)

'test table' (21) 'table caption' (21) 'Rich features' (1)

'table.title' (22) 'table.caption' (21)

'center' (43)

Console.render def (43)

1def render_annotation(
2            text: TextType, style: StyleType, justify: "JustifyMethod" = "center"
3        ) -> "RenderResult":
4            render_text = (
5                console.render_str(text, style=style, highlight=False)
6                if isinstance(text, str)
7                else text
8            )
9            return console.render(
10                render_text, options=render_options.update(justify=justify)
11            )